home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 2000 August / Designer's Club 2000 August.iso / pc / DC Users Guide / Tutorials / Flash_Tutorial.exe / Flash_Tutorial.DXR / 00082.ls < prev    next >
Encoding:
Text File  |  2000-06-29  |  657 b   |  29 lines

  1. on mouseEnter me
  2.   puppetSound(1, "buttonflicker")
  3.   cursor(280)
  4.   set the memberNum of sprite the spriteNum of me to the memberNum of sprite the spriteNum of me - 3
  5.   updateStage()
  6. end
  7.  
  8. on mouseLeave me
  9.   cursor(-1)
  10.   set the memberNum of sprite the spriteNum of me to the memberNum of sprite the spriteNum of me + 3
  11.   updateStage()
  12. end
  13.  
  14. on mouseUp me
  15.   cursor(-1)
  16.   if the spriteNum of me = 2 then
  17.     go("what")
  18.   end if
  19.   if the spriteNum of me = 3 then
  20.     go("index")
  21.   end if
  22.   if the spriteNum of me = 4 then
  23.     go("tutorial")
  24.   end if
  25.   if the spriteNum of me = 7 then
  26.     gotoNetPage("http://www.macromedia.com/shockwave/download/")
  27.   end if
  28. end
  29.